runtime.heapBits.mask (field)
10 uses
runtime (current package)
mbitmap.go#L398: mask uintptr
mbitmap.go#L446: return heapBits{addr: addr, size: size, mask: mask, valid: valid}
mbitmap.go#L459: if h.mask != 0 {
mbitmap.go#L462: i = sys.TrailingZeros64(uint64(h.mask))
mbitmap.go#L464: i = sys.TrailingZeros32(uint32(h.mask))
mbitmap.go#L466: h.mask ^= uintptr(1) << (i & (ptrBits - 1))
mbitmap.go#L498: if h.mask == 0 {
mbitmap.go#L504: i = sys.TrailingZeros64(uint64(h.mask))
mbitmap.go#L506: i = sys.TrailingZeros32(uint32(h.mask))
mbitmap.go#L509: h.mask ^= uintptr(1) << (i & (ptrBits - 1))
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |